home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1995 August / PSL Monthly Shareware CD-ROM Volume 3 Number 8 (Public Software Library).bin / setup.bat < prev    next >
DOS Batch File  |  1995-04-27  |  972b  |  27 lines

  1. echo off
  2. cls
  3. echo The Windows program for accessing the CD is in the PSL_NEWS directory.
  4. echo Before running it, you need to copy the files VBRUN300.DLL and
  5. echo WBTRCALL.DLL to your WINDOWS directory. Then just use Program Manager
  6. echo or File Manager to locate PSL_SHRW.EXE in the PSL_NEWS directory of
  7. echo this CD and run that program.
  8. echo  
  9. echo If your Windows drive and directory are C:\WINDOWS, press Enter to
  10. echo have this batch file copy the necessary files. Otherwise, press Ctrl-C
  11. echo at the following prompt and rerun SETUP specifying the correct drive
  12. echo and path (example: "SETUP D:\WIN3").
  13. echo  
  14. pause
  15. if %1. == . goto CopyC
  16. copy runtimes\vbrun300.dll %1
  17. copy runtimes\wbtrcall.dll %1
  18. goto Done
  19. :CopyC
  20. copy runtimes\vbrun300.dll c:\windows
  21. copy runtimes\wbtrcall.dll c:\windows
  22. :Done
  23. echo  
  24. echo If no error messages were received above, you are now ready to run
  25. echo PSL_SHRW.EXE which is in the PSL_NEWS directory.
  26. echo  
  27.